home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_07 / 9n07026a < prev    next >
Encoding:
Text File  |  1991-05-08  |  404 b   |  18 lines

  1. /* Copyright 1987 by Apple Computer, Inc. */ 
  2.  
  3. /* HyperXCmd.h */
  4.  
  5. typedef struct XCmdBlock
  6. {
  7.     short   paramCount;       /* initial call */
  8.     Handle  params[16];
  9.     Handle  returnValue;      
  10.     Boolean passFlag; 
  11.  
  12.     void    (*entryPoint)();  /* call back */
  13.     short   request;  
  14.     short   result;  
  15.     long    inArgs[8];
  16.     long    outArgs[4];
  17. } XCmdBlock, *XCmdBlockPtr;
  18.